# 0 警告⚠️
对window不熟悉,建议直接下载编译好的,否则你会吐血。win用户最好加社区群(企鹅号:239401374)下载最新便携包,无需编译或者是安装即可使用。下载的名称类似于scheme-lib-2.1-win32-thread 2.1为版本号 win32指32位windows程序 thread指多线程优化版本
# 1 准备环境
下载Msys2 从"http://www.msys2.org/" 下载 "msys2-i686-xxx.exe",不懂安装请参考这篇文章 "http://blog.csdn.net/liyuanbhu/article/details/39397931"。
建议版本2017的
# 2 安装基本软件
运行 mingw32_shell.bat, 然后执行下面几行命令:
pacman --needed -Sy bash pacman pacman-mirrors msys2-runtime git
pacman -S ncurses
pacman -S mingw-w64-i686-openal mingw-w64-i686-glfw mingw-w64-i686-freeglut
# 3 编译运行
运行 mingw32_shell.bat, 执行下面的命令:
编译
cd ~/
git clone https://github.com/evilbinary/scheme-lib.git
cd scheme-lib/
make clean && make
运行
source env.sh
./scheme --script ../apps/hello.ss
← 1 linux、mac下安装 1 输入 →